home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / gnu / gnu_oleo_1_2_2.lha / oleo-1.2.2 / io-utils.h < prev    next >
C/C++ Source or Header  |  1993-03-03  |  2KB  |  62 lines

  1. #ifndef IO_UTILSH
  2. #define IO_UTILSH
  3.  
  4. /*    Copyright (C) 1992 Free Software Foundation, Inc.
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this software; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19. /*  t. lord    Thu Oct 15 18:26:51 1992    */
  20.  
  21. #include "global.h"
  22. #include "cell.h"
  23.  
  24. #ifdef __STDC__
  25. extern void init_infinity (void);
  26. extern void clear_spreadsheet (void);
  27. extern char *print_cell (CELL *);
  28. extern char *cell_value_string (CELLREF r, CELLREF c);
  29. extern char *col_to_str (CELLREF);
  30. extern char *flt_to_str (double);
  31. char *backslash_a_string (char *, int);
  32. extern int usr_set_fmts (void);
  33. extern char *cell_name (CELLREF, CELLREF);
  34. extern char *range_name (struct rng *);
  35. extern char *new_var_value (char *, int, char *);
  36. extern char *read_new_value (CELLREF, CELLREF, char *, char *);
  37. extern void set_usr_stats (int, char **);
  38. extern void get_usr_stats (int, char **);
  39. extern char *adjust_prc (char *, CELL *, int, int, int);
  40. #else
  41. extern void init_infinity ();
  42. extern void clear_spreadsheet ();
  43. extern char *print_cell ();
  44. extern char *cell_value_string ();
  45. extern char *col_to_str ();
  46. extern char *flt_to_str ();
  47. char *backslash_a_string ();
  48. extern int usr_set_fmts ();
  49. extern char *cell_name ();
  50. extern char *range_name ();
  51. extern char *new_var_value ();
  52. extern char *read_new_value ();
  53. extern void set_usr_stats ();
  54. extern void get_usr_stats ();
  55. extern char *adjust_prc ();
  56. #endif
  57.  
  58. extern char numb_oflo[];
  59. extern char *bname[];
  60. extern char print_buf[];
  61. #endif
  62.